/* Floating Contact Buttons */
.floating-contact {
    position: fixed;
    bottom: 80px; /* Above the scrollup button which is at 22px */
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 10000;
}

.contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    border-radius: 50px;
    color: #fff !important;
    text-decoration: none !important;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 15px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.25);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    white-space: nowrap;
    border: 2px solid rgba(255,255,255,0.2);
}

.contact-btn i {
    font-size: 22px;
    margin-right: 12px;
}

.contact-btn.whatsapp {
    background: #25d366;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.contact-btn.phone {
    background: #9a2170;
    background: linear-gradient(135deg, #9a2170 0%, #7d1a5b 100%);
    color: #fff !important;
}

.contact-btn.phone i {
    color: #fff !important;
}

.contact-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    border-color: rgba(255,255,255,0.5);
    color: #fff !important; /* Keep white for WhatsApp */
}

.contact-btn.phone:hover {
    color: #fff !important; /* White for Phone on hover as well */
}

/* Mobile styles */
@media screen and (max-width: 768px) {
    .floating-contact {
        bottom: 80px;
        right: 15px;
        gap: 10px;
    }
    .contact-btn {
        padding: 0;
        border-radius: 50%;
        width: 60px;
        height: 60px;
    }
    .contact-btn span {
        display: none;
    }
    .contact-btn i {
        margin-right: 0;
        font-size: 28px;
    }
}
